version bump to 2.5
authorSteven G. Johnson <stevenj@alum.mit.edu>
Fri, 27 Mar 2020 21:22:21 +0000 (17:22 -0400)
committerSteven G. Johnson <stevenj@alum.mit.edu>
Fri, 27 Mar 2020 21:22:21 +0000 (17:22 -0400)
CMakeLists.txt
MANIFEST
Makefile
NEWS.md
utf8proc.h

index 2f5d2d4efd190b00a80d93e451db8b28d0c5ecef..bfc3f9be72777b142fbf4c780736fd2397911ac0 100644 (file)
@@ -11,7 +11,7 @@ project (utf8proc C)
 # Be sure to also update these in Makefile and MANIFEST!
 set(SO_MAJOR 2)
 set(SO_MINOR 3)
-set(SO_PATCH 1)
+set(SO_PATCH 2)
 
 option(UTF8PROC_INSTALL "Enable installation of utf8proc" On)
 option(UTF8PROC_ENABLE_TESTING "Enable testing of utf8proc" Off)
index b9abfededf86035d639f6e9e3aa48ca58b814468..98fc50550ba46a158cd7c198a220656cc99f2820 100644 (file)
--- a/MANIFEST
+++ b/MANIFEST
@@ -2,8 +2,8 @@ include/
 include/utf8proc.h
 lib/
 lib/libutf8proc.a
-lib/libutf8proc.so -> libutf8proc.so.2.3.1
-lib/libutf8proc.so.2 -> libutf8proc.so.2.3.1
-lib/libutf8proc.so.2.3.1
+lib/libutf8proc.so -> libutf8proc.so.2.3.2
+lib/libutf8proc.so.2 -> libutf8proc.so.2.3.2
+lib/libutf8proc.so.2.3.2
 lib/pkgconfig/
 lib/pkgconfig/libutf8proc.pc
index 0de069719f83f6d3212948e9349993035d121a15..149618cdbe3a58940a3346a91754dde0224dd696 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -24,7 +24,7 @@ SOFLAG = -Wl,-soname
 # Be sure to also update these ABI versions in MANIFEST and CMakeLists.txt!
 MAJOR=2
 MINOR=3
-PATCH=1
+PATCH=2
 
 OS := $(shell uname)
 ifeq ($(OS),Darwin) # MacOS X
diff --git a/NEWS.md b/NEWS.md
index 9f3e2ec3748f43e6778b29c5bb3149effffb6268..ec49c5e46ded330216139597b05e3898f66e7057 100644 (file)
--- a/NEWS.md
+++ b/NEWS.md
@@ -1,5 +1,15 @@
 # utf8proc release history #
 
+## Version 2.5 ##
+
+2019-03-27
+
+- Unicode 13 support ([#179]).
+
+- No longer report zero width for category Sk ([#167]).
+
+- `cmake` support improvements ([#173]).
+
 ## Version 2.4 ##
 
 2019-05-10
index 490200fd1e1c249a53672cc1c10604c797a57b04..36b4ddb623e120401a34b3f5b03c01d1051641c7 100644 (file)
@@ -71,7 +71,7 @@
 /** The MAJOR version number (increased when backwards API compatibility is broken). */
 #define UTF8PROC_VERSION_MAJOR 2
 /** The MINOR version number (increased when new functionality is added in a backwards-compatible manner). */
-#define UTF8PROC_VERSION_MINOR 4
+#define UTF8PROC_VERSION_MINOR 5
 /** The PATCH version (increased for fixes that do not change the API). */
 #define UTF8PROC_VERSION_PATCH 0
 /** @} */